Keysight Pathwave 89600 VSA .NET API
SaveBitmap(String,BitmapType,IList<View>) Method
See Also 
Agilent.SA.Vsa.Interfaces Assembly > Agilent.SA.Vsa Namespace > Printer Class > SaveBitmap Method : SaveBitmap(String,BitmapType,IList<View>) Method


fileName
The file name to which to save the content.
fileType
The desired image format.
results
A list of View objects to save. The list of all views which can be saved to disk can be retrieved using the Display.Views property.

Glossary Item Box

Save a selected set of content to the named file in the indicated format.

Syntax

Visual Basic (Declaration) 
Public Overloads MustOverride Sub SaveBitmap( _
   ByVal fileName As String, _
   ByVal fileType As BitmapType, _
   ByVal results As IList(Of View) _
) 
C# 
public abstract void SaveBitmap( 
   string fileName,
   BitmapType fileType,
   IList<View> results
)
C++/CLI 
public:
abstract void SaveBitmap( 
   String^ fileName,
   BitmapType fileType,
   IList<View^>^ results
) 

Parameters

fileName
The file name to which to save the content.
fileType
The desired image format.
results
A list of View objects to save. The list of all views which can be saved to disk can be retrieved using the Display.Views property.

Remarks

Currently the only image format that supports saving multiple images to a single file is BitmapType.Tiff. Attempting to save multiple views to any other file type will lead to unpredictable results.

Requirements

Target Platforms: Windows 11 Professional or Enterprise; Windows 10 Professional, Enterprise, or Education (64-bit)

See Also